home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 92 / CDMM92_1.ISO / SOF 2 SDK / sof2sdk-101.msi / _92D6AC311BB48EBA344BBABC89DA6AB0 / _A5357331B87B4F25AF9642A6AD8BC50C < prev    next >
Encoding:
Text File  |  2002-06-14  |  682 b   |  38 lines

  1. // Copyright (C) 2001-2002 Raven Software.
  2. //
  3. // gt_local.h -- local definitions for gametype module
  4.  
  5. #include "../../game/q_shared.h"
  6. #include "../gt_public.h"
  7. #include "../gt_syscalls.h"
  8.  
  9. typedef struct gametypeLocals_s
  10. {
  11.     int            time;
  12.  
  13.     int            bombBeepTime;
  14.  
  15.     int            bombPlantTime;
  16.     vec3_t        bombPlantOrigin;
  17.     char        bombPlantTarget[MAX_QPATH];
  18.     
  19.     qboolean    firstFrame;
  20.  
  21.     int            bombExplodeEffect;
  22.     int            bombBeepSound;
  23.     int            bombTakenSound;
  24.     int            bombExplodedSound;
  25.     int            bombPlantedSound;
  26.  
  27.     int            iconBombPlanted[7];
  28.  
  29.     int            bombGiveClient;
  30.     int            bombPlantClient;
  31.  
  32.     qboolean    roundOver;
  33.  
  34. } gametypeLocals_t;
  35.  
  36. extern    gametypeLocals_t    gametype;
  37.  
  38.